@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fcfcfc;
  margin: 0;
  padding: 0;
  color: #222;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(90deg, #f7b733 0%, #fc4a1a 100%);
  border-radius: 18px;
  margin-top: 32px;
  margin-bottom: 32px;
  padding: 40px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.hero-text {
  flex: 1 1 350px;
  min-width: 300px;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #222;
}
.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: #333;
}
.hero-btn {
  display: inline-block;
  background: #fc4a1a;
  color: #fff;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(252,74,26,0.12);
  transition: background 0.2s;
}
.hero-btn:hover {
  background: #f7b733;
  color: #222;
}
.hero-image {
  flex: 1 1 300px;
  min-width: 250px;
  display: flex;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

/* Good People Section */
.good-people-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
}
.good-people-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
.good-img {
  width: 220px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.good-desc {
  font-size: 1.1rem;
  color: #444;
  max-width: 400px;
}

/* Why Choose Section */
.why-choose-section {
  text-align: center;
  margin: 40px 0 24px 0;
}
.why-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-desc {
  font-size: 1.1rem;
  color: #555;
}

/* Features Section */
.features-section {
  margin: 32px 0;
}
.feature-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.feature-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 28px 20px;
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.15s, box-shadow 0.15s;
}
.feature-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(252,74,26,0.13);
}
.feature-card i {
  font-size: 2.2rem;
  color: #fc4a1a;
  margin-bottom: 12px;
}
.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.feature-desc {
  font-size: 1rem;
  color: #555;
}

/* About Section */
.about-section {
  margin: 48px 0;
}
.about-content {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.about-img {
  width: 220px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.about-text {
  max-width: 500px;
}
.about-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.about-desc {
  font-size: 1.1rem;
  color: #444;
}

/* Experts Section */
.experts-section {
  margin: 48px 0 32px 0;
  text-align: center;
}
.experts-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.expert-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.expert-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 24px 18px;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.15s, box-shadow 0.15s;
}
.expert-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(252,74,26,0.13);
}
.expert-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}
.expert-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.expert-details {
  font-size: 0.98rem;
  color: #555;
  margin-bottom: 10px;
}
.expert-btn {
  background: #fc4a1a;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.expert-btn:hover {
  background: #f7b733;
  color: #222;
}

/* Testimonials Section */
.testimonials-section {
  margin: 48px 0 32px 0;
  text-align: center;
}
.testimonials-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 22px 16px;
  width: 320px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.testimonial-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-content {
  text-align: left;
}
.testimonial-name {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.testimonial-feedback {
  font-size: 0.98rem;
  color: #555;
}

/* Footer Section */
.footer-section {
  background: #222;
  color: #fff;
  padding: 40px 0 24px 0;
  margin-top: 48px;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #f7b733;
}
.footer-social {
  margin-bottom: 18px;
}
.footer-social a {
  color: #fff;
  font-size: 1.3rem;
  margin: 0 8px;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #fc4a1a;
}
.footer-copyright {
  font-size: 1rem;
  color: #bbb;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .hero-content, .about-content, .good-people-content, .feature-cards, .expert-cards, .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }
  .hero-section, .about-section, .features-section, .experts-section, .testimonials-section {
    padding-left: 0;
    padding-right: 0;
  }
  .feature-card, .expert-card, .testimonial-card {
    width: 90vw;
    max-width: 350px;
  }
  .about-img, .good-img {
    width: 90vw;
    max-width: 350px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 4px;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .about-title, .experts-title, .testimonials-title, .why-title {
    font-size: 1.1rem;
  }
  .feature-card, .expert-card, .testimonial-card {
    padding: 16px 8px;
  }
  .footer-section {
    padding: 24px 0 12px 0;
  }
} 

    /* Import Google Fonts for better typography */
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');
    
    * {
      box-sizing: border-box;
    }
    
    /* Performance optimizations for animations */
    .hero-section,
    .hero-title,
    .hero-desc,
    .hero-btn,
    .hero-image,
    .hero-image img,
    .good-people-section,
    .good-img,
    .why-choose-section,
    .why-title,
    .why-desc,
    .features-section,
    .feature-card,
    .feature-card i,
    .testimonials-section,
    .testimonials-title,
    .testimonial-card,
    .testimonial-img,
    .testimonial-rating,
    .footer-section,
    .footer-brand,
    .footer-social a {
      will-change: transform, opacity;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      transform-style: preserve-3d;
      -webkit-transform-style: preserve-3d;
    }
    
    /* Scroll-based animations */
    .scroll-animate {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .scroll-animate.animate {
      opacity: 1;
      transform: translateY(0);
    }
    
    .scroll-animate-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .scroll-animate-left.animate {
      opacity: 1;
      transform: translateX(0);
    }
    
    .scroll-animate-right {
      opacity: 0;
      transform: translateX(50px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .scroll-animate-right.animate {
      opacity: 1;
      transform: translateX(0);
    }
    
    .scroll-animate-scale {
      opacity: 0;
      transform: scale(0.8);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .scroll-animate-scale.animate {
      opacity: 1;
      transform: scale(1);
    }
    
    .scroll-animate-rotate {
      opacity: 0;
      transform: rotate(-10deg) scale(0.9);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .scroll-animate-rotate.animate {
      opacity: 1;
      transform: rotate(0deg) scale(1);
    }
    
    body {
      margin: 0;
      font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: #ffffff;
      color: #1a1a1a;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    .appbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: #fff;
      padding: 0 24px;
      height: 70px;
      box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .appbar-title {
      font-size: 2.2rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(45deg, #fff, #f0f0f0);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .appbar-actions {
      display: flex;
      gap: 12px;
    }
    .appbar-btn {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #fff;
      font-size: 0.95rem;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      padding: 10px 18px;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .appbar-btn.active, .appbar-btn:hover {
      background: rgba(255, 255, 255, 0.25);
      border-color: rgba(255, 255, 255, 0.4);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
      color: #fff;
      font-weight: 700;
    }
    
    .appbar-btn.active {
      background: rgba(255, 255, 255, 0.3);
      border-color: rgba(255, 255, 255, 0.5);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      position: relative;
    }
    
    .appbar-btn.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      height: 3px;
      background: linear-gradient(90deg, #fff, #f0f0f0);
      border-radius: 2px;
    }

    .appbar-btn:disabled {
      opacity: 0.7;
      cursor: not-allowed;
    }

    .appbar-btn:disabled i {
      animation: spin 1s linear infinite;
    }
    .hamburger {
      display: none;
      font-size: 1.7rem;
      background: none;
      border: none;
      color: #fff;
      cursor: pointer;
    }
    .content-area {
      max-width: 1400px;
      margin: 40px auto 0 auto;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 20px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      padding: 40px 24px;
      min-height: 120px;
      text-align: center;
      font-size: 1.3rem;
      font-weight: 500;
      box-sizing: border-box;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    @media (max-width: 900px) {
      .content-area {
        max-width: 95vw;
        padding: 32px 20px;
        font-size: 1.1rem;
        margin: 20px auto 0 auto;
      }
    }
    @media (max-width: 700px) {
      .appbar {
        padding: 0 16px;
        height: 60px;
      }
      .appbar-title {
        font-size: 1.6rem;
      }
      .appbar-title img {
        height: 32px !important;
      }
      .appbar-btn {
        padding: 8px 14px;
        font-size: 0.9rem;
      }
      .content-area {
        margin: 16px 8px 0 8px;
        border-radius: 16px;
        padding: 24px 16px;
        font-size: 1rem;
      }
    }
    @media (max-width: 600px) {
      .appbar {
        padding: 0 12px;
        height: 56px;
      }
      .appbar-title {
        font-size: 1.4rem;
      }
      .appbar-title img {
        height: 28px !important;
      }
      .appbar-actions {
        display: none;
      }
      .hamburger {
        display: block;
        font-size: 1.5rem;
        padding: 8px;
        border-radius: 8px;
        transition: background 0.3s ease;
      }
      .hamburger:hover {
        background: rgba(255, 255, 255, 0.1);
      }
      .content-area {
        margin: 12px 6px 0 6px;
        padding: 20px 12px;
        font-size: 0.95rem;
        border-radius: 12px;
      }
    }
    @media (max-width: 480px) {
      .appbar {
        padding: 0 10px;
        height: 52px;
      }
      .appbar-title {
        font-size: 1.2rem;
      }
      .appbar-title img {
        height: 24px !important;
      }
      .content-area {
        margin: 8px 4px 0 4px;
        padding: 16px 10px;
        font-size: 0.9rem;
        border-radius: 10px;
      }
    }
    .mobile-drawer {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 280px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      box-shadow: 4px 0 24px rgba(102, 126, 234, 0.25);
      z-index: 1001;
      transform: translateX(-100%);
      transition: transform 0.3s cubic-bezier(.4,0,.2,1);
      display: flex;
      flex-direction: column;
      padding: 32px 20px 20px 24px;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }
    .mobile-drawer.open {
      transform: translateX(0);
    }
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0,0,0,0.18);
      z-index: 1000;
      display: none;
    }
    .drawer-overlay.open {
      display: block;
    }
    .drawer-close {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #fff;
      font-size: 1.5rem;
      align-self: flex-end;
      margin-bottom: 24px;
      cursor: pointer;
      padding: 8px;
      border-radius: 12px;
      transition: all 0.3s ease;
    }
    .drawer-close:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: scale(1.1);
    }
    .drawer-link {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #fff;
      font-size: 1.1rem;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      padding: 16px 20px;
      border-radius: 12px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px;
      width: 100%;
      text-align: left;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .drawer-link.active, .drawer-link:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.3);
      color: #fff;
      transform: translateX(4px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    @media (min-width: 601px) {
      .mobile-drawer, .drawer-overlay { display: none !important; }
    }
 
    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
    .container {
      font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: transparent;
      margin: 0;
      padding: 0;
      color: #1a1a1a;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
      box-sizing: border-box;
    }
    
    @media (min-width: 1600px) {
      .container {
        max-width: 1600px;
        padding: 0 40px;
      }
      
      .content-area {
        max-width: 1600px;
        padding: 40px 40px;
      }
    }
    .hero-section {
      background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
      border-radius: 24px;
      margin-top: 40px;
      margin-bottom: 40px;
      padding: 48px 32px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden;
      animation: fadeInUp 0.8s ease-out;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
      pointer-events: none;
    }
    .hero-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .hero-text {
      flex: 1 1 350px;
      min-width: 260px;
    }
    .hero-title {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 20px;
      color: #1a1a1a;
      font-family: 'Poppins', sans-serif;
      letter-spacing: -1px;
      line-height: 1.2;
      position: relative;
      z-index: 1;
      animation: slideInLeft 1s ease-out 0.2s both;
    }
    
    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    .hero-desc {
      font-size: 1.3rem;
      margin-bottom: 32px;
      color: #666;
      font-weight: 400;
      line-height: 1.6;
      position: relative;
      z-index: 1;
      animation: slideInLeft 1s ease-out 0.4s both;
    }
    .hero-btn {
      display: inline-block;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: #fff;
      font-weight: 700;
      padding: 16px 36px;
      border-radius: 16px;
      text-decoration: none;
      font-size: 1.1rem;
      box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
      transition: all 0.3s ease;
      border: 2px solid rgba(102, 126, 234, 0.3);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      position: relative;
      z-index: 1;
      font-family: 'Inter', sans-serif;
      animation: slideInLeft 1s ease-out 0.6s both;
    }
    .hero-btn:hover {
      background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
      border-color: rgba(102, 126, 234, 0.5);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
      color: #fff;
    }
    .hero-image {
      flex: 1 1 400px;
      min-width: 300px;
      display: flex;
      justify-content: center;
      align-items: center;
      animation: slideInRight 1s ease-out 0.3s both;
    }
    
    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    .hero-image img {
      width: 100%;
      max-width: 450px;
      min-width: 280px;
      border-radius: 20px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.15);
      height: auto;
      object-fit: cover;
      transition: transform 0.3s ease;
      animation: float 3s ease-in-out infinite;
    }
    
    @keyframes float {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-10px);
      }
    }
    .hero-image img:hover {
      transform: scale(1.02);
    }
    .good-people-section {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 60px 0;
      padding: 0 20px;
      animation: fadeInUp 1s ease-out 0.8s both;
    }
    .good-people-content {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 48px;
      max-width: 1000px;
      width: 100%;
    }
    .good-img {
      width: 400px;
      max-width: 100%;
      min-width: 300px;
      border-radius: 20px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.15);
      height: auto;
      object-fit: cover;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      animation: pulse 2s ease-in-out infinite;
    }
    
    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.02);
      }
    }
    .good-img::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 1;
    }
    .good-img:hover {
      transform: scale(1.03) translateY(-4px);
      box-shadow: 0 16px 40px rgba(102, 126, 234, 0.2);
    }
    .good-img:hover::before {
      opacity: 1;
    }
    .good-desc {
      font-size: 1.3rem;
      color: #1a1a1a;
      max-width: 500px;
      font-weight: 500;
      line-height: 1.6;
      font-family: 'Inter', sans-serif;
    }
    .why-choose-section {
      text-align: center;
      margin: 40px 0 24px 0;
      animation: fadeInUp 1s ease-out 1s both;
    }
    .why-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 8px;
      animation: slideInUp 1s ease-out 1.2s both;
    }
    
    @keyframes slideInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .why-desc {
      font-size: 1.1rem;
      color: #555;
      animation: slideInUp 1s ease-out 1.4s both;
    }
    .features-section {
      margin: 32px 0;
      animation: fadeInUp 1s ease-out 1.6s both;
    }
    .feature-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      justify-content: center;
      max-width: 1400px;
      margin: 0 auto;
    }
    .feature-card {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 20px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      padding: 32px 24px;
      width: calc(25% - 18px);
      max-width: 320px;
      min-width: 280px;
      flex: 1 1 280px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      transition: all 0.3s ease;
      box-sizing: border-box;
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      animation: fadeInUp 0.8s ease-out both;
    }
    
    .feature-card:nth-child(1) { animation-delay: 1.8s; }
    .feature-card:nth-child(2) { animation-delay: 2.0s; }
    .feature-card:nth-child(3) { animation-delay: 2.2s; }
    .feature-card:nth-child(4) { animation-delay: 2.4s; }
    .feature-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 12px 32px rgba(102, 126, 234, 0.15);
      border-color: rgba(102, 126, 234, 0.3);
    }
    .feature-card i {
      font-size: 2.5rem;
      color: #667eea;
      margin-bottom: 16px;
      background: linear-gradient(135deg, #667eea, #764ba2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: bounce 2s ease-in-out infinite;
    }
    
    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      }
      40% {
        transform: translateY(-10px);
      }
      60% {
        transform: translateY(-5px);
      }
    }
    .feature-title {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: #1a1a1a;
      font-family: 'Poppins', sans-serif;
    }
    .feature-desc {
      font-size: 1rem;
      color: #666;
      line-height: 1.6;
      font-weight: 400;
    }
    
    /* Testimonials Section */
    .testimonials-section {
      margin: 48px 0;
      text-align: center;
      animation: fadeInUp 1s ease-out 2.6s both;
    }
    
    .testimonials-title {
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: 32px;
      color: #1a1a1a;
      font-family: 'Poppins', sans-serif;
      animation: slideInUp 1s ease-out 2.8s both;
    }
    
    /* Testimonials Slider */
    .testimonials-slider-container {
      position: relative;
      overflow: hidden;
      padding: 0 60px;
      margin: 0 auto;
      max-width: 1200px;
    }
    
    .testimonials-slider {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      gap: 0;
    }
    
    .testimonial-slide {
      min-width: 100%;
      display: flex;
      justify-content: center;
      animation: slideIn 0.6s ease-out;
    }
    
    /* Show 3 testimonials at once */
    .testimonials-slider {
      display: flex;
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
      overflow: hidden;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .testimonial-slide {
      min-width: calc(33.333% - 16px);
      width: calc(33.333% - 16px);
      flex-shrink: 0;
    }
    
    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    .testimonial-card {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 20px;
      padding: 32px;
      width: 100%;
      max-width: 100%;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      animation: fadeInUp 0.8s ease-out both;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    
    .testimonial-card:nth-child(1) { animation-delay: 3.0s; }
    .testimonial-card:nth-child(2) { animation-delay: 3.2s; }
    .testimonial-card:nth-child(3) { animation-delay: 3.4s; }
    .testimonial-card:nth-child(4) { animation-delay: 3.6s; }
    .testimonial-card:nth-child(5) { animation-delay: 3.8s; }
    
    .testimonial-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #f0f0f2, #aeadb0);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }
    
    .testimonial-card:hover::before {
      transform: scaleX(1);
    }
    
    .testimonial-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 16px 40px rgba(102, 126, 234, 0.2);
    }
    
    .testimonial-avatar {
      position: relative;
      margin-bottom: 16px;
    }
    
    .testimonial-img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #667eea;
    }
    
    .testimonial-rating {
      position: absolute;
      top: -5px;
      right: -5px;
      background: linear-gradient(135deg, #667eea, #764ba2);
      color: white;
      border-radius: 50%;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      font-weight: bold;
      animation: pulse 2s ease-in-out infinite;
    }
    
    .testimonial-name {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: #1a1a1a;
      font-family: 'Poppins', sans-serif;
    }
    
    .testimonial-feedback {
      font-size: 0.95rem;
      color: #666;
      line-height: 1.5;
      font-style: italic;
    }
    
    /* Slider Controls */
    .testimonials-slider-controls {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      display: flex;
      justify-content: space-between;
      pointer-events: none;
      z-index: 10;
    }
    
    .testimonials-slider-btn {
      background: rgba(255, 255, 255, 0.9);
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: auto;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    
    .testimonials-slider-btn:hover {
      background: rgba(255, 255, 255, 1);
      box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
      transform: scale(1.1);
    }
    
    .testimonials-slider-btn i {
      color: #667eea;
      font-size: 1.2rem;
      font-weight: bold;
      transition: transform 0.3s ease;
    }
    
    .testimonials-slider-btn:hover i {
      transform: scale(1.2);
    }
    
    /* Dots Navigation */
    .testimonials-dots {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 32px;
    }
    
    .testimonial-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(102, 126, 234, 0.3);
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: 2px solid transparent;
    }
    
    .testimonial-dot.active {
      background: linear-gradient(135deg, #667eea, #764ba2);
      transform: scale(1.3);
      box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    }
    
    .testimonial-dot:hover {
      background: rgba(102, 126, 234, 0.6);
      transform: scale(1.2);
    }
    .about-section {
      margin: 48px 0;
      text-align: center;
    }
    .about-content {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
    }
    .about-img {
      width: 400px;
      max-width: 100%;
      min-width: 300px;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.12);
      height: auto;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    .about-img:hover {
      transform: scale(1.03);
    }
    .about-text {
      max-width: 500px;
      text-align: left;
    }
    .about-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .about-desc {
      font-size: 1.1rem;
      color: #444;
    }
    .experts-section {
      margin: 48px 0 32px 0;
      text-align: center;
    }
    .experts-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 24px;
      text-align: center;
    }
    .experts-header {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 24px;
      flex-direction: column;
      gap: 16px;
    }
    
    .more-experts-btn {
      background: linear-gradient(135deg, #FF6B35, #FF8E53);
      color: white;
      border: none;
      border-radius: 25px;
      padding: 12px 24px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
      opacity: 1;
      visibility: visible;
    }
    
    .more-experts-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    }
    
    .experts-slider-container {
      position: relative;
      overflow: hidden;
      padding: 0 40px;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .experts-slider {
      display: flex;
      gap: 24px;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      width: 100%;
    }
    
    /* Auto-scroll animation for experts */
    @keyframes autoScroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-100%);
      }
    }
    
    .experts-slider.auto-scroll {
      animation: autoScroll 20s linear infinite;
    }
    
    .experts-slider.auto-scroll:hover {
      animation-play-state: paused;
    }
    
    .slider-controls {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      display: flex;
      justify-content: space-between;
      pointer-events: none;
      z-index: 10;
    }
    
    .slider-btn {
      background: rgba(255, 255, 255, 0.9);
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      pointer-events: auto;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    
    .slider-btn:hover {
      background: white;
      box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
      transform: scale(1.1);
    }
    
    .slider-btn i {
      color: #667eea;
      font-size: 1.2rem;
      font-weight: bold;
      transition: transform 0.3s ease;
    }
    
    .slider-btn:hover i {
      transform: scale(1.2);
    }
    
    /* Responsive styles */
    @media (max-width: 768px) {
      .experts-header {
        flex-direction: column;
        gap: 16px;
        align-items: center;
      }
      
      .more-experts-btn {
        align-self: center;
      }
      
      .experts-slider-container {
        padding: 0 20px;
      }
      
      .slider-btn {
        width: 35px;
        height: 35px;
      }
      
      .slider-btn i {
        font-size: 0.9rem;
      }
      
      .expert-slide {
        min-width: 260px !important;
      }
    }
    
    @media (max-width: 480px) {
      .experts-slider-container {
        padding: 0 10px;
      }
      
      .slider-btn {
        width: 30px;
        height: 30px;
      }
      
      .slider-btn i {
        font-size: 0.8rem;
      }
      
      .expert-slide {
        min-width: 240px !important;
      }
      
      /* Ensure only 4 expert cards are visible on mobile */
      .experts-slider .expert-slide:nth-child(n+5) {
        display: none;
      }
      
      /* Mobile Hero Section */
      .hero-section {
        margin-top: 20px;
        margin-bottom: 24px;
        padding: 32px 20px;
        border-radius: 16px;
      }
      
      .hero-title {
        font-size: 2.2rem;
        margin-bottom: 16px;
      }
      
      .hero-desc {
        font-size: 1.1rem;
        margin-bottom: 24px;
      }
      
      .hero-btn {
        padding: 14px 28px;
        font-size: 1rem;
        border-radius: 12px;
      }
      
      .hero-content {
        gap: 20px;
      }
      
      .hero-text {
        flex: 1 1 100%;
        min-width: 100%;
      }
      
      .hero-image {
        flex: 1 1 100%;
        min-width: 100%;
      }
      
      .hero-image img {
        max-width: 280px;
      }
    }
    
    @media (max-width: 768px) {
      .hero-section {
        margin-top: 24px;
        margin-bottom: 32px;
        padding: 40px 24px;
        border-radius: 20px;
      }
      
      .hero-title {
        font-size: 2.6rem;
      }
      
      .hero-desc {
        font-size: 1.2rem;
      }
      
      .hero-content {
        flex-direction: column;
        text-align: center;
      }
      
      .hero-text {
        flex: 1 1 100%;
        min-width: 100%;
      }
      
      .hero-image {
        flex: 1 1 100%;
        min-width: 100%;
      }
      
      .hero-image img {
        max-width: 320px;
        min-width: 250px;
      }
      
      /* Desktop Image Enhancements */
      @media (min-width: 1200px) {
        .hero-image img {
          max-width: 500px;
          min-width: 350px;
        }
        
        .good-img {
          width: 350px;
          min-width: 280px;
        }
        
        .about-img {
          width: 380px;
          min-width: 300px;
        }
      }
      
      @media (min-width: 1400px) {
        .hero-image img {
          max-width: 550px;
          min-width: 400px;
        }
        
        .good-img {
          width: 500px;
          min-width: 400px;
        }
        
        .about-img {
          width: 450px;
          min-width: 400px;
        }
        
        .feature-card {
          width: 360px;
          min-width: 320px;
          padding: 36px 28px;
        }
        
        .good-people-content {
          gap: 60px;
          max-width: 1200px;
        }
        
        .good-desc {
          font-size: 1.4rem;
          max-width: 600px;
        }
      }
      
      /* Mobile Feature Cards */
      .feature-cards {
        gap: 16px;
        justify-content: center;
      }
      
      .feature-card {
        width: 100%;
        max-width: 320px;
        padding: 24px 20px;
        border-radius: 16px;
      }
      
      .feature-card i {
        font-size: 2.2rem;
        margin-bottom: 12px;
      }
      
      .feature-title {
        font-size: 1.2rem;
        margin-bottom: 6px;
      }
      
      .feature-desc {
        font-size: 0.95rem;
      }
    }
    
    @media (max-width: 480px) {
      .feature-cards {
        gap: 12px;
        flex-direction: column;
        align-items: center;
      }
      
      .feature-card {
        width: 100%;
        max-width: 280px;
        padding: 20px 16px;
        border-radius: 12px;
      }
      
      .feature-card i {
        font-size: 2rem;
        margin-bottom: 10px;
      }
      
      .feature-title {
        font-size: 1.1rem;
        margin-bottom: 5px;
      }
      
      .feature-desc {
        font-size: 0.9rem;
      }
      
      /* Mobile Testimonials */
      .testimonials-title {
        font-size: 1.8rem;
        margin-bottom: 24px;
      }
      
      .testimonial-cards {
        gap: 16px;
      }
      
      .testimonial-card {
        width: 100%;
        max-width: 320px;
        padding: 20px;
        border-radius: 16px;
      }
      
      .testimonial-img {
        width: 50px;
        height: 50px;
      }
      
      .testimonial-name {
        font-size: 1rem;
      }
      
      .testimonial-feedback {
        font-size: 0.9rem;
      }
    }
    
    @media (max-width: 480px) {
      .testimonials-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
      }
      
      .testimonial-cards {
        gap: 12px;
        flex-direction: column;
        align-items: center;
      }
      
      .testimonial-card {
        width: 100%;
        max-width: 280px;
        padding: 16px;
        border-radius: 12px;
      }
      
      .testimonial-img {
        width: 45px;
        height: 45px;
      }
      
      .testimonial-name {
        font-size: 0.95rem;
      }
      
      .testimonial-feedback {
        font-size: 0.85rem;
      }
      
      /* Ensure only 3 testimonials are visible on mobile */
      .testimonials-slider .testimonial-slide:nth-child(n+4) {
        display: none;
      }
      
      /* Mobile Testimonials Slider */
      .testimonials-slider-container {
        padding: 0 40px;
      }
      
      .testimonials-slider {
        display: flex;
        gap: 16px;
      }
      
      .testimonial-slide {
        min-width: calc(50% - 8px);
        width: calc(50% - 8px);
      }
      
      .testimonial-card {
        width: 100%;
        max-width: 320px;
        padding: 24px;
      }
      
      .testimonials-slider-btn {
        width: 45px;
        height: 45px;
      }
      
      .testimonials-slider-btn i {
        font-size: 1.1rem;
      }
    }
    
    @media (max-width: 480px) {
      .testimonials-slider-container {
        padding: 0 30px;
      }
      
      .testimonials-slider {
        display: flex;
        gap: 12px;
      }
      
      .testimonial-slide {
        min-width: 100%;
        width: 100%;
      }
      
      .testimonial-card {
        width: 100%;
        max-width: 280px;
        padding: 20px;
      }
      
      .testimonials-slider-btn {
        width: 40px;
        height: 40px;
      }
      
      .testimonials-slider-btn i {
        font-size: 1rem;
      }
      
      .testimonials-dots {
        margin-top: 24px;
        gap: 8px;
      }
      
      .testimonial-dot {
        width: 10px;
        height: 10px;
      }
      
      /* Mobile Good People Section */
      .good-people-section {
        margin: 40px 0;
        padding: 0 16px;
      }
      
      .good-people-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
      }
      
      .good-img {
        width: 320px;
        min-width: 280px;
        border-radius: 16px;
      }
      
      .good-desc {
        font-size: 1.1rem;
        max-width: 100%;
      }
    }
    
    @media (max-width: 768px) {
      .good-people-section {
        margin: 32px 0;
        padding: 0 12px;
      }
      
      .good-people-content {
        gap: 20px;
      }
      
      .good-img {
        width: 280px;
        min-width: 250px;
        border-radius: 12px;
      }
      
      .good-desc {
        font-size: 1rem;
        line-height: 1.5;
      }
    }
    
    @media (max-width: 480px) {
      .good-people-section {
        margin: 24px 0;
        padding: 0 8px;
      }
      
      .good-people-content {
        gap: 16px;
      }
      
      .good-img {
        width: 240px;
        min-width: 200px;
        border-radius: 10px;
      }
      
      .good-desc {
        font-size: 0.95rem;
        line-height: 1.4;
      }
    }
    
    .expert-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      justify-content: center;
    }
    .expert-card {
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
      padding: 24px 18px;
      width: 220px;
      max-width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: transform 0.15s, box-shadow 0.15s;
      box-sizing: border-box;
    }
    .expert-card:hover {
      transform: translateY(-6px) scale(1.03);
      box-shadow: 0 8px 24px rgba(252,74,26,0.13);
    }
    .expert-img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 12px;
    }
    .expert-name {
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 4px;
    }
    .expert-details {
      font-size: 0.98rem;
      color: #555;
      margin-bottom: 10px;
    }
    .expert-btn {
      background: #fc4a1a;
      color: #fff;
      border: none;
      border-radius: 6px;
      padding: 8px 20px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
    }
    .expert-btn:hover {
      background: #f7b733;
      color: #222;
    }
    
    /* Rating Styles for Expert Cards */
    .expert-rating {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 12px;
      justify-content: center;
    }
    
    .rating-stars {
      color: #FFD700;
      font-size: 0.9rem;
      font-weight: bold;
    }
    
    .rating-text {
      color: #333;
      font-size: 0.85rem;
      font-weight: 600;
    }
    
    .review-count {
      color: #666;
      font-size: 0.75rem;
    }
    
    .top-rated-expert {
      position: relative;
      border: 2px solid #FF6B35 !important;
      background: linear-gradient(135deg, #fff 0%, #fff8f5 100%);
    }
    
    .top-rated-badge {
      position: absolute;
      top: -8px;
      right: -8px;
      background: linear-gradient(45deg, #FF6B35, #FF8E53);
      color: white;
      border-radius: 50%;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: bold;
      box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
      z-index: 1;
    }
    
    .review-preview {
      margin: 8px 0;
      padding: 8px;
      background: #f8f9fa;
      border-radius: 6px;
      border-left: 3px solid #FF6B35;
      font-size: 0.8rem;
    }
    
    .review-text {
      color: #333;
      font-style: italic;
      margin-bottom: 4px;
      line-height: 1.3;
    }
    
    .review-author {
      color: #666;
      font-size: 0.75rem;
      font-weight: 500;
    }
    
    /* Rating Container Styles (same as ProfileListing) */
    .rating-container {
      display: flex;
      align-items: center;
      gap: 5px;
      margin-top: 5px;
    }
    
    .rating-stars {
      color: #FFD700;
      font-size: 0.9rem;
    }
    
    .rating-text {
      color: #666;
      font-size: 0.8rem;
      font-weight: 500;
    }
    
    .review-count {
      color: #999;
      font-size: 0.75rem;
    }
    .testimonials-section {
      margin: 48px 0 32px 0;
      text-align: center;
    }
    .testimonials-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 24px;
    }
    .testimonial-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      justify-content: center;
    }
    .testimonial-card {
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
      padding: 22px 16px;
      width: 320px;
      max-width: 100%;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      box-sizing: border-box;
    }
    .testimonial-img {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      object-fit: cover;
    }
    .testimonial-content {
      text-align: left;
    }
    .testimonial-name {
      font-weight: 700;
      font-size: 1.05rem;
      margin-bottom: 4px;
    }
    .testimonial-feedback {
      font-size: 0.98rem;
      color: #555;
    }
    .footer-section {
      background: #222;
      color: #fff;
      padding: 40px 0 24px 0;
      margin-top: 48px;
      animation: fadeInUp 1s ease-out 4s both;
    }
    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }
    .footer-brand {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 18px;
      animation: slideInUp 1s ease-out 4.2s both;
    }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      justify-content: center;
      margin-bottom: 18px;
    }
    .footer-links a {
      color: #fff;
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.2s;
    }
    .footer-links a:hover {
      color: #f7b733;
    }
    .footer-social {
      margin-bottom: 18px;
    }
    .footer-social a {
      color: #fff;
      font-size: 1.3rem;
      margin: 0 8px;
      transition: color 0.2s;
      animation: bounce 2s ease-in-out infinite;
    }
    
    .footer-social a:nth-child(1) { animation-delay: 4.4s; }
    .footer-social a:nth-child(2) { animation-delay: 4.6s; }
    .footer-social a:nth-child(3) { animation-delay: 4.8s; }
    .footer-social a:nth-child(4) { animation-delay: 5.0s; }
    .footer-social a:hover {
      color: #fc4a1a;
    }
    .footer-copyright {
      font-size: 1rem;
      color: #bbb;
    }
    @media (max-width: 1100px) {
      .container {
        padding: 0 4px;
      }
      .hero-section, .about-section, .features-section, .experts-section, .testimonials-section {
        padding-left: 0;
        padding-right: 0;
      }
    }
    @media (max-width: 900px) {
      .hero-content, .about-content, .good-people-content, .expert-cards, .testimonial-cards {
        flex-direction: column;
        align-items: center;
        gap: 18px;
      }
      .feature-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
      }
      .feature-card {
        width: calc(50% - 8px);
        max-width: 320px;
        min-width: 280px;
      }
      .expert-card, .testimonial-card {
        width: 98vw;
        max-width: 350px;
      }
      .about-img, .good-img {
        width: 98vw;
        max-width: 350px;
      }
    }
    @media (max-width: 700px) {
      .container {
        padding: 0 2px;
      }
      .hero-section, .about-section, .features-section, .experts-section, .testimonials-section {
        padding: 18px 2vw;
      }
      .hero-title {
        font-size: 1.5rem;
      }
      .about-title, .experts-title, .testimonials-title, .why-title {
        font-size: 1.1rem;
      }
      .feature-card, .expert-card, .testimonial-card {
        padding: 12px 4px;
      }
      .footer-section {
        padding: 24px 0 12px 0;
      }
    }
    @media (max-width: 500px) {
      .hero-title, .about-title, .experts-title, .testimonials-title, .why-title {
        font-size: 1rem;
      }
      .hero-section, .about-section, .features-section, .experts-section, .testimonials-section {
        padding: 8px 1vw;
      }
      .feature-card, .expert-card, .testimonial-card {
        padding: 8px 2px;
        font-size: 0.95rem;
      }
      .footer-section {
        padding: 12px 0 6px 0;
      }
    }

.logo-img {
    height: 40px;
    vertical-align: middle;
}
.loading-placeholder {
    text-align: center;
    padding: 40px;
    width: 100%;
}
.loading-spinner-container {
    display: inline-block;
    margin-bottom: 20px;
}
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #FF6B35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.loading-text {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.loading-subtext {
    font-size: 0.9rem;
    color: #666;
}
.expert-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.25);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.expert-modal-content {
    background: #fff;
    border-radius: 12px;
    max-width: 350px;
    width: 90vw;
    margin: auto;
    padding: 28px 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    position: relative;
    text-align: center;
}
.expert-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: #673ab7;
    cursor: pointer;
}
.expert-modal-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}
.expert-modal-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.expert-modal-details {
    font-size: 0.98rem;
    color: #555;
    margin-bottom: 18px;
}
.expert-modal-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.expert-modal-input {
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
}
.expert-modal-textarea {
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
}
.expert-modal-submit {
    background: #fc4a1a;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-success-msg {
    color: green;
    margin-top: 10px;
    display: none;
}
.expert-slide {
    min-width: 280px;
    flex-shrink: 0;
}
.top-rated-expert {
    cursor: pointer;
    transition: all 0.2s ease;
}
.profile-image-cover {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.initials-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    display: none;
}
.profile-image-container {
    width: 64px;
    height: 64px;
    font-size: 2rem;
    font-weight: 700;
    overflow: hidden;
    position: relative;
}
.online-indicator {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.experience-text {
    font-size: 0.98rem;
}
.about-loading {
    text-align: center;
    padding: 60px;
}
.about-loading-spinner-container {
    display: inline-block;
    margin-bottom: 20px;
}
.about-loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.about-loading-text {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.error-icon {
    font-size: 4rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}
.error-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #d32f2f;
    margin-bottom: 10px;
}
.error-message {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}
.back-to-home-btn {
    padding: 12px 24px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
}
.hidden {
    display: none;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
